home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / lou.dxr / 00063.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  844 b   |  44 lines

  1. on enterFrame
  2.   global Gflag
  3.   set Gflag to 0
  4. end
  5.  
  6. on mouseUp
  7.   global FrameG
  8.   if the mouseCast = 2 then
  9.     go(FrameG)
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   if rollOver(30) then
  15.     if the visible of sprite 30 = 0 then
  16.       set the visible of sprite 30 to 1
  17.     end if
  18.   else
  19.     set the visible of sprite 30 to 0
  20.   end if
  21.   if rollOver(31) then
  22.     if the visible of sprite 31 = 0 then
  23.       set the visible of sprite 31 to 1
  24.     end if
  25.   else
  26.     set the visible of sprite 31 to 0
  27.   end if
  28.   if rollOver(32) then
  29.     if the visible of sprite 32 = 0 then
  30.       set the visible of sprite 32 to 1
  31.     end if
  32.   else
  33.     set the visible of sprite 32 to 0
  34.   end if
  35.   if rollOver(33) then
  36.     if the visible of sprite 33 = 0 then
  37.       set the visible of sprite 33 to 1
  38.     end if
  39.   else
  40.     set the visible of sprite 33 to 0
  41.   end if
  42.   go(the frame)
  43. end
  44.